net/http.http2FrameHeader.StreamID (field)
54 uses
net/http (current package)
h2_bundle.go#L1732: StreamID uint32
h2_bundle.go#L1768: if h.StreamID != 0 {
h2_bundle.go#L1769: fmt.Fprintf(buf, " stream=%d", h.StreamID)
h2_bundle.go#L1813: StreamID: binary.BigEndian.Uint32(buf[5:]) & (1<<31 - 1),
h2_bundle.go#L2160: fh.Type, fh.StreamID,
h2_bundle.go#L2163: if fh.StreamID != fr.lastHeaderStream {
h2_bundle.go#L2166: fh.StreamID, fr.lastHeaderStream))
h2_bundle.go#L2169: return fr.connError(http2ErrCodeProtocol, fmt.Sprintf("unexpected CONTINUATION for stream %d", fh.StreamID))
h2_bundle.go#L2177: fr.lastHeaderStream = fh.StreamID
h2_bundle.go#L2206: if fh.StreamID == 0 {
h2_bundle.go#L2335: if fh.StreamID != 0 {
h2_bundle.go#L2470: if fh.StreamID != 0 {
h2_bundle.go#L2508: if fh.StreamID != 0 {
h2_bundle.go#L2573: if fh.StreamID == 0 {
h2_bundle.go#L2578: return nil, http2streamError(fh.StreamID, http2ErrCodeProtocol)
h2_bundle.go#L2632: if fh.StreamID == 0 {
h2_bundle.go#L2664: return nil, http2streamError(fh.StreamID, http2ErrCodeProtocol)
h2_bundle.go#L2794: if fh.StreamID == 0 {
h2_bundle.go#L2847: if fh.StreamID == 0 {
h2_bundle.go#L2875: if fh.StreamID == 0 {
h2_bundle.go#L2929: if pp.StreamID == 0 {
h2_bundle.go#L3266: return nil, http2StreamError{mh.StreamID, http2ErrCodeProtocol, invalid}
h2_bundle.go#L3273: return nil, http2StreamError{mh.StreamID, http2ErrCodeProtocol, err}
h2_bundle.go#L3306: if f.StreamID == 0 {
h2_bundle.go#L5550: if id := res.f.Header().StreamID; id > sc.maxClientStreamID {
h2_bundle.go#L5582: if sc.inGoAway && (sc.goAwayCode != http2ErrCodeNo || f.Header().StreamID > sc.maxClientStreamID) {
h2_bundle.go#L5586: return sc.countError("data_flow", http2streamError(f.Header().StreamID, http2ErrCodeFlowControl))
h2_bundle.go#L5632: if f.StreamID != 0 {
h2_bundle.go#L5647: case f.StreamID != 0: // stream-level flow control
h2_bundle.go#L5648: state, st := sc.state(f.StreamID)
h2_bundle.go#L5665: return sc.countError("bad_flow", http2streamError(f.StreamID, http2ErrCodeFlowControl))
h2_bundle.go#L5679: state, st := sc.state(f.StreamID)
h2_bundle.go#L5690: sc.closeStream(st, http2streamError(f.StreamID, f.ErrCode))
h2_bundle.go#L5835: id := f.Header().StreamID
h2_bundle.go#L5998: id := f.StreamID
h2_bundle.go#L6011: if st := sc.streams[f.StreamID]; st != nil {
h2_bundle.go#L6067: if err := sc.checkPriority(f.StreamID, f.Priority); err != nil {
h2_bundle.go#L6173: if err := sc.checkPriority(f.StreamID, f.http2PriorityParam); err != nil {
h2_bundle.go#L6176: sc.writeSched.AdjustStream(f.StreamID, f.http2PriorityParam)
h2_bundle.go#L6229: return nil, nil, sc.countError("bad_connect", http2streamError(f.StreamID, http2ErrCodeProtocol))
h2_bundle.go#L6235: return nil, nil, sc.countError("bad_connect", http2streamError(f.StreamID, http2ErrCodeProtocol))
h2_bundle.go#L6248: return nil, nil, sc.countError("bad_path_method", http2streamError(f.StreamID, http2ErrCodeProtocol))
h2_bundle.go#L9610: cs := rl.streamByID(f.StreamID, http2headerOrDataFrame)
h2_bundle.go#L9619: StreamID: f.StreamID,
h2_bundle.go#L9648: StreamID: f.StreamID,
h2_bundle.go#L9939: cs := rl.streamByID(f.StreamID, http2headerOrDataFrame)
h2_bundle.go#L9945: if f.StreamID >= neverSent {
h2_bundle.go#L9976: StreamID: f.StreamID,
h2_bundle.go#L9984: StreamID: f.StreamID,
h2_bundle.go#L9993: StreamID: f.StreamID,
h2_bundle.go#L10226: cs := rl.streamByID(f.StreamID, http2notHeaderOrDataFrame)
h2_bundle.go#L10227: if f.StreamID != 0 && cs == nil {
h2_bundle.go#L10242: StreamID: f.StreamID,
h2_bundle.go#L10255: cs := rl.streamByID(f.StreamID, http2notHeaderOrDataFrame)